home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Developers / dropg++ / usr / src / examples / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  120 b   |  10 lines  |  [TEXT/R*ch]

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6. double x = 355;
  7. double y = 113;
  8. printf("Hello, world %8.6g\n", x/y);
  9. }
  10.